home *** CD-ROM | disk | FTP | other *** search
AMOS Source Code | 1990-12-11 | 690 b | 28 lines |
- ' ASCII READER PROGRAM
- '
- ' Programmed By
- '
- ' HAWK IN JANUARY 1993
- '
-
- Screen Open 0,640,200,2,Hires
- Z$="Df0:Articles/Hawk.Message"
- Open In 1,Z$
- Reserve As Work 10,Lof(1)
- Close 1
- Bload Z$,Start(10)
-
- For T=1 To Length(10)
- If Peek(Start(10)+T)=10
- Print Chr$(13)
- Else
- Print Chr$(Peek(Start(10)+T));
- End If
- Next T
-
- ' When you get down to it, it is infact a VERY short program! I'm not
- ' gonna tell you how to paginate it, how to change the colors etc, but
- ' with a bit of knowledge and a look through some of the other code
- ' with this issue, it shouldn't be too difficult to do!
-
- ' HAWK 30-1-93